home *** CD-ROM | disk | FTP | other *** search
/ Virgin E3 Press Kit (USA) / Virgin E3 Press Kit (USA).bin / Xtras / BITS.cst / 00033_Script_RollForNoArtWork < prev    next >
Text File  |  2000-04-28  |  613b  |  30 lines

  1. property defaultButton
  2. global NoArtWork
  3.  
  4.  
  5. on beginSprite me 
  6.  
  7.     set the defaultButton of me to the memberNum of sprite the currentSpriteNum  
  8.  
  9. end
  10.  
  11.  
  12. on mouseEnter me
  13.   if NoArtWork = "False" then
  14.     set the memberNum of sprite the currentSpriteNum to 1+the defaultButton of me
  15.   end if    
  16. end
  17.  
  18. on mouseLeave me
  19.   if NoArtWork = "False" then
  20.     set the memberNum of sprite the currentSpriteNum to the defaultButton of me
  21.   end if    
  22. end
  23.  
  24. on mouseUp me
  25.   if NoArtWork = "False" then
  26.     set the memberNum of sprite the currentSpriteNum to 1+the defaultButton of me
  27.   end if
  28. end
  29.  
  30.